home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.lang.c
- Path: news.sprintlink.net!eskimo!news
- From: mag@eskimo.com (mAg)
- Subject: Re: 32-bit assembler instructions in c?
- X-Nntp-Posting-Host: tia1.eskimo.com
- Message-ID: <Dn9M8u.81M@eskimo.com>
- Sender: news@eskimo.com (News User Id)
- Organization: *.*
- X-Newsreader: WinVN 0.93.10
- References: <312C89D5.2B5A@dtek.chalmers.se>
- Date: Sat, 24 Feb 1996 05:36:29 GMT
-
- In article <312C89D5.2B5A@dtek.chalmers.se> (Thu, 22 Feb 1996 16:20:53
- +0100), d95danb@dtek.chalmers.se says :
- >
- >How do I use 32-bit assembler instructions, like
- >movsd and stosd in my c-programs?
- >If it's possible - please email the answer to this
- >adress, d95danb@dtek.chalmers.se
- >
- >Thanks!!
- >
- >--------------------------------------------------
- >
-
- What chip are you trying to program? This is not standard C.
-
- However many real-life flexible compilers allow Hardware/OS specific
- instructions. One of them is Visual C. You can say something like :
-
- _asm
- {
- mov ax, bx
- ...
- ...
- }
-
- Please bear in mind, THIS IS NOT STANDARD C, It is not even C. :-)
-
- --
- /* --------------------------------------------------------
- MAG@ESKIMO.COM
- http://www.eskimo.com/~mag/index.html
- ***********************************************************
- To understand recursion one must first understand recursion
- ***********************************************************
- -------------------------------------------------------- */
-
-